home *** CD-ROM | disk | FTP | other *** search
- #include "ezdslcts.pas"
-
- STRINGTABLE
- BEGIN
- escTooManyItems, "Container has maximum number of items already"
- escInsInvalidHere, "Cannot insert at this node"
- escDelInvalidHere, "Cannot delete this node"
- escInsertDup, "Tried to insert duplicate data: container specifies no dups"
- escTreeStackError, "Stack problem with pre/in/postorder traversal"
- escTreeQueueError, "Queue problem with levelorder traversal"
- escCannotMoveHere, "Tried to move outside the container's boundary"
- escIncompatible, "Tried to join two containers with different sized nodes"
- escNoCompare, "No Compare function supplied"
- escNoDupData, "No DupData function supplied"
- escNoDisposeData, "No DisposeData function supplied"
- escBadSource, "Incompatible source for Clone operation"
- escIndexError, "Index out of range for collection"
-
- ascFreeNilNode, "Attempt to free a nil Node"
- ascNewNodeSize0, "Attempt to allocate node of zero size"
- ascFreeNodeSize0, "Attempt to free node of zero size"
- ascEmptyExamine, "The container is empty, cannot examine node"
- ascEmptyPop, "Cannot pop from an empty stack or queue"
- ascDeleteEdges, "Cannot delete from list's BeforeFirst or AfterLast positions"
- ascExamineEdges, "Cannot examine data at list's BeforeFirst or AfterLast positions"
- ascInsertEdges, "Cannot InsertBefore at list's BeforeFirst position, or InsertAfter at AfterLast"
- ascReplaceEdges, "Cannot replace at list's BeforeFirst or AfterLast positions"
- ascAlreadyAtEnd, "Already at AfterLast position, Next has no effect"
- ascAlreadyAtStart, "Already at BeforeFirst position, Prev has no effect"
- ascCannotJoinHere, "Cannot join another container here"
- ascCannotJoinData, "Cannot join a data owner to a non-data owner container, and vice versa"
- ascSplitEdges, "Cannot split a list at its BeforeFirst or AfterLast positions"
- ascoutOfRange, "Index is out of the range 0 to (Count-1)"
- ascExamineLeaf, "Cannot examine the data in a leaf, it's a nil pointer"
- ascBadSkipLevel, "The skip level is not between 1 and skMaxLevels"
- END
-
-